home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000382_news@columbia.edu _Mon Dec 20 12:36:04 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA25450
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 20 Dec 1999 12:36:04 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA19320
  7.     for kermit.misc@watsun.cc.columbia.edu; Mon, 20 Dec 1999 12:20:21 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Carrier Detect Over a VMS LAT Protocol
  11. Date: 20 Dec 1999 17:20:21 GMT
  12. Organization: Columbia University
  13. Message-ID: <83logl$irl$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <83lo03$e53$1@lure.pipex.net>,
  17. Brian Ward (Harveys MIS) <Harveys.mis@dial.pipex.com> wrote:
  18. : I am using an Alpha server running OpenVMS 6.2
  19. : I have setup a LAT port that is talking to the modem O.K. and is talking to
  20. : the outside world O.K.
  21. : I can't do a set term/perm/modem to enable modem controls in VMS 6.2
  22. : My problem is I need to do a
  23. : WAIT 1 \CD
  24. : to check for carrier detect in my .INI file
  25. : this just falls over immediately
  26. : PLEASE HELP
  27. : HOW CAN I CHECK FOR CARRIER DETECT USING A LAT DEVICE
  28. So this is a question about C-Kermit?  Which version?  The current version
  29. is 6.0:
  30.  
  31.   http://www.columbia.edu/kermit/ck60.html
  32.  
  33. soon to be replaced by 7.0:
  34.  
  35.   http://www.columbia.edu/kermit/ck70.html
  36.  
  37. Anyway, I'm not sure if this works.  The best way to tell is to give
  38. commands like like this:
  39.  
  40.   set line ltannn  (replace with actual port name)
  41.   show comm
  42.   show modem
  43.  
  44. Does it show modem signals, or does it say "Modem signals not available"?
  45.  
  46. If it shows modem signals then you can use WAIT to test for them, but
  47. you have to omit the backslash -- just use "wait 1 cd".
  48.  
  49. If it says "Modem signals not available", that means it asked VMS for
  50. the modem signals and VMS returned an error.
  51.  
  52. But are you really asking the right question?  What are you trying to
  53. accomplish with "wait 1 cd"?  Is this part of a dialing sequence?  If so,
  54. did you know that you can just use the DIAL command?  All of this is
  55. explained in the manual:
  56.  
  57.   http://www.columbia.edu/kermit/ck60manual.html
  58.  
  59. - Frank